home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000175_stevebNoSpamPlease@bs-sys.com_Sat Apr 3 12:00:05 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!iad-feed.news.verio.net!peer1.stngva01.us.to.verio.net!news.verio.net!news.glorb.com!news.moat.net!border1.nntp.sjc.giganews.com!nntp.giganews.com!local1.nntp.sjc.giganews.com!nntp.speakeasy.net!news.speakeasy.net.POSTED!not-for-mail
  2. NNTP-Posting-Date: Fri, 02 Apr 2004 19:31:47 -0600
  3. From: "Steve" <stevebNoSpamPlease@bs-sys.com>
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: K95 with VB
  6. Date: Fri, 2 Apr 2004 17:31:32 -0800
  7. X-Priority: 3
  8. X-MSMail-Priority: Normal
  9. X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
  10. X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
  11. Message-ID: <ONOdnXG_hdGZifPd38DK-g@speakeasy.net>
  12. Lines: 22
  13. NNTP-Posting-Host: 216.254.11.161
  14. X-Trace: sv3-TAP9eBKgW2Iym1MvUqw0SQrOQC4agWKBiamCArXfSWId1jorbXEpMGNWnZjDhg4W8NpNUJsa9bF50Fz!ZmLJWFK3XKSDM6OroNjc4H5+uhOMInAZxo17BjtcU/G1cBQsQcRJ/Kf+lA06esxR14v8Fi5ZKsXB!SwM+EPDgtITLUXljJA==
  15. X-Complaints-To: abuse@speakeasy.net
  16. X-DMCA-Complaints-To: abuse@speakeasy.net
  17. X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
  18. X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
  19. X-Postfilter: 1.1
  20. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14886
  21.  
  22. I have an app that calls K95 which has a script that sets the line etc and
  23. puts K95 in server mode.  The app basically receives files and processes the
  24. data.  I have a way for the end user to shut down the app using
  25. TerminateProcess:
  26.  
  27. Declare Function TerminateProcess Lib "kernel32" (ByVal hProcess As Long,
  28. ByVal uExitCode As Long) As Long
  29.  
  30. Everything is working fine with my Lucent Winmodem.  Trying to do the same
  31. thing using an Agere Winmodem which I am told is the new name Lucent.  The
  32. problem is with this modem, the TerminateProcess does not release the modem.
  33. If I try to use the modem again with my app or with any other app, I get an
  34. error.  Specifically with K95 I am getting "Sorry, access to device is
  35. denied".  I have to shut down the PC in order to free up the modem.  Looking
  36. at the settings on the modems, the only difference is the speaker volume.
  37. If I manually go into K95, set the modem and then End Task, that releases
  38. the modem.
  39.  
  40. Any idea why one modem thinks it is still in use but the other does not?
  41. Steve
  42.  
  43.